home *** CD-ROM | disk | FTP | other *** search
-
- // JavaScript wrapper for r3progre.h
- // Auto generated file, do not modify by hand
- // Copyright ⌐ 2004, Realsoft Graphics Oy
-
- var R3_PROGRE_H = 1;
- include("oops/r3root.js")
-
-
- var R3CLID_PROGRE = 247;
-
-
-
-
- // Description: Set current value for the progress idicator
- // Virtual method
- // p3: Integer, value for the progress indicator
-
- R3PROGREM_PROGRESSTO = 247000;
-
- function mR3PROGREM_PROGRESSTO(p3) {
- DoA(this.r3obj, 247000, p3, R3TID_INTEGER, 0);
- }
-
- // Description: Initialize progress indicator.
- // Virtual method
- // p3: Integer, max value for the progress indicator.
-
- R3PROGREM_BEGIN = 247001;
-
- function mR3PROGREM_BEGIN(p3) {
- DoA(this.r3obj, 247001, p3, R3TID_INTEGER, 0);
- }
-
- // Description: End progress session. If there is a parent progress level, it is incremented by
- // its * R3PROGREA_ChildRange defined amount.
- // Virtual method
-
- R3PROGREM_END = 247002;
-
- function mR3PROGREM_END() {
- DoA(this.r3obj, 247002, 0, R3TID_INTEGER, 0);
- }
-
- // Description: Show given text.
- // Virtual method
- // p3: String, string to be shown
-
- R3PROGREM_SHOWTEXT = 247003;
-
- function mR3PROGREM_SHOWTEXT(p3) {
- DoA(this.r3obj, 247003, p3, R3TID_STRING, 0);
- }
-
- // Description: Set current relative value 0..1 for the progress indicator
- // Virtual method
- // p3: Number, relative value for the progress indicator
-
- R3PROGREM_PROGRESSTORELATIVE = 247004;
-
- function mR3PROGREM_PROGRESSTORELATIVE(p3) {
- DoA(this.r3obj, 247004, p3, R3TID_FLOAT, 0);
- }
-
- // Description: Complete reset of all descending progress levels. Because of hierarchical nature, * this method should
- // be only called by the owner (=creator) of the progress indicator.
- // Virtual method
-
- R3PROGREM_RESET = 247005;
-
- function mR3PROGREM_RESET() {
- DoA(this.r3obj, 247005, 0, R3TID_INTEGER, 0);
- }
-
- // Description: Ask if progress indicator canceling has been requested
- // Virtual method
-
- R3PROGREM_ISCANCELED = 247006;
-
- function mR3PROGREM_ISCANCELED() {
- DoA(this.r3obj, 247006, 0, R3TID_INTEGER, 0);
- }
-
- // Virtual method
-
- R3PROGREM_INCREMENT = 247007;
-
- function mR3PROGREM_INCREMENT() {
- DoA(this.r3obj, 247007, 0, R3TID_INTEGER, 0);
- }
-
-
-
-
- R3PROGREA_InfoString = 247500;
- function SetR3PROGREA_InfoString(value) {
- R3Set(this.r3obj, R3PROGREA_InfoString, value, R3TID_STRING, 0);
- }
-
- function GetR3PROGREA_InfoString() {
- return R3Get(this.r3obj, R3PROGREA_InfoString, R3TID_STRING, 0);
- }
-
- R3PROGREA_ChildRange = 247501;
- function SetR3PROGREA_ChildRange(value) {
- R3Set(this.r3obj, R3PROGREA_ChildRange, value, R3TID_FLOAT, 0);
- }
-
- function GetR3PROGREA_ChildRange() {
- return R3Get(this.r3obj, R3PROGREA_ChildRange, R3TID_FLOAT, 0);
- }
-
- R3PROGREA_TotalRelative = 247502;
- function GetR3PROGREA_TotalRelative() {
- return R3Get(this.r3obj, R3PROGREA_TotalRelative, R3TID_FLOAT, 0);
- }
-
- R3PROGREA_CurrentRelative = 247503;
- function GetR3PROGREA_CurrentRelative() {
- return R3Get(this.r3obj, R3PROGREA_CurrentRelative, R3TID_FLOAT, 0);
- }
-
- R3PROGREA_CancelCode = 247504;
- function SetR3PROGREA_CancelCode(value) {
- R3Set(this.r3obj, R3PROGREA_CancelCode, value, R3TID_INTEGER, 0);
- }
-
- function GetR3PROGREA_CancelCode() {
- return R3Get(this.r3obj, R3PROGREA_CancelCode, R3TID_INTEGER, 0);
- }
-
-
-
- function r3Progre () {
- // Methods
- this.PROGRESSTO=mR3PROGREM_PROGRESSTO;
- this.BEGIN=mR3PROGREM_BEGIN;
- this.END=mR3PROGREM_END;
- this.SHOWTEXT=mR3PROGREM_SHOWTEXT;
- this.PROGRESSTORELATIVE=mR3PROGREM_PROGRESSTORELATIVE;
- this.RESET=mR3PROGREM_RESET;
- this.ISCANCELED=mR3PROGREM_ISCANCELED;
- this.INCREMENT=mR3PROGREM_INCREMENT;
-
- // Attributes
- this.GetInfoString=GetR3PROGREA_InfoString;
- this.SetInfoString=SetR3PROGREA_InfoString;
- this.GetChildRange=GetR3PROGREA_ChildRange;
- this.SetChildRange=SetR3PROGREA_ChildRange;
- this.GetTotalRelative=GetR3PROGREA_TotalRelative;
- this.GetCurrentRelative=GetR3PROGREA_CurrentRelative;
- this.GetCancelCode=GetR3PROGREA_CancelCode;
- this.SetCancelCode=SetR3PROGREA_CancelCode;
- }
-
- // r3progre.h_H